翻訳と辞書
Words near each other
・ Profile in Anger
・ Profile in Courage Award
・ Profile in Silver
・ Profile Lake
・ Profile Lake (disambiguation)
・ Profile Lake (Idaho)
・ Profile of a Jazz Musician
・ Profile of a Serial Killer
・ Profile of mood states
・ Profile Portrait of a Young Lady
・ Profile Records
・ Profile Rock
・ Profile Scripting Language
・ PROFILE Systems and Software
・ Profile Zali Mashhad FSC
Profile-guided optimization
・ Profiled
・ Profiler
・ Profiler (season 1)
・ Profiler (season 2)
・ Profiler (season 3)
・ Profiler (season 4)
・ Profiler (TV series)
・ Profiles
・ Profiles (album)
・ Profiles (TV series)
・ Profiles in Caring
・ Profiles in Courage
・ Profiles in Courage (TV series)
・ Profiles in Folly


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Profile-guided optimization : ウィキペディア英語版
Profile-guided optimization
Profile-guided optimization (PGO) (sometimes pronounced as ''pogo'', also known as profile-directed feedback (PDF〔(【引用サイトリンク】title=Profile-directed feedback (PDF) )〕) is a compiler optimization technique in computer programming that uses profiling to improve program runtime performance.
==Method==
Optimization techniques based on analysis of the source code alone are based on general ideas as to possible improvements, often applied without much worry over whether or not the code section was going to be executed frequently though also recognising that code within looping statements is worth extra attention.
The first high-level compiler, introduced as the Fortran Automatic Coding System in 1957, broke the code into blocks and devised a table of the frequency each block is executed via a simulated execution of the code in a Monte Carlo fashion in which the outcome of conditional transfers (as via IF-type statements) is determined by a random number generator suitably weighted by whatever FREQUENCY statements were provided by the programmer. 〔J. W. Backus, R. J. Beeber, et al., ''The Fortran Automatic Coding System'', Proceedings of the Western Joint Computer Conference, February 1957, p. 195〕
Rather than programmer-supplied frequency information, profile-guided optimisation uses the results of profiling test runs of the instrumented program to optimize the final generated code. The compiler is used to access data from a sample run of the program across a representative input set. The results indicate which areas of the program are executed more frequently, and which areas are executed less frequently. All optimizations benefit from profile-guided feedback because they are less reliant on heuristics when making compilation decisions. The caveat, however, is that the sample of data fed to the program during the profiling stage must be statistically representative of the typical usage scenarios; otherwise, profile-guided feedback has the potential to harm the overall performance of the final build instead of improving it.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Profile-guided optimization」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.